home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / GDIMETA.PAK / STATBAR.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  37 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. // PURPOSE:
  9. //    Contains declarations for the status bar module.
  10. //
  11.  
  12. //-------------------------------------------------------------------------
  13. #define IDM_STATUSBAR       501
  14. #define IDM_TIMER           701
  15. #define TIMER_TIMEOUT       1000
  16.  
  17.  
  18. // System Menu string ID's
  19. #define IDS_SYSMENU         900
  20.  
  21. #define IDS_SCSIZE          SC_SIZE
  22. #define IDS_SCMOVE          SC_MOVE
  23. #define IDS_SCMINIMIZE      SC_MINIMIZE
  24. #define IDS_SCMAXIMIZE      SC_MAXIMIZE
  25. #define IDS_SCCLOSE         SC_CLOSE
  26. #define IDS_SCRESTORE       SC_RESTORE
  27. #define IDS_SCTASKLIST      SC_TASKLIST
  28.  
  29.  
  30. // Global variables for status bar window
  31. extern HWND hWndStatusbar;
  32.  
  33. // Function prototypes for status bar creation
  34. BOOL CreateSBar(HWND);
  35. void InitializeStatusBar(HWND);
  36. void UpdateStatusBar(LPSTR, WORD, WORD);
  37.